home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d18 / textf.arc / TEXTF.DOC < prev    next >
Text File  |  1991-04-28  |  1KB  |  31 lines

  1. TEXTF by:  Arthur Zatarain  C'serve # 73417,525
  2. 09/24/89
  3.  
  4. TEXTF is a text file processing package that allows for position seeks
  5. and faster string input from files.
  6.  
  7. The files in the TEXTF package are a direct adaptation of the RLINE
  8. package developed by Don Strenczewilk, C'Serve [72617,132].
  9.  
  10. The TEXTF package takes the RLINE routines and makes the primary
  11. data type RFREC into an object.  All other operations are the same as RLINE
  12. except for slight changes in the test program.  Rather than using the
  13. command line, the sample program TEXTTEST prompts for the file name.
  14.  
  15. This was done mainly as an exercise in using Objects and TASM, but there
  16. are some advantages I can think of in using ojects here.  First, descendent
  17. objects can be easily formed to do special tricks like seek forward and
  18. backward for a specific string.  I can use that in my script processor.
  19.  
  20. After doing the conversion and getting familiar with the WELL DOCUMENTED
  21. asm code, I got to wondering if straight Turbo Blocked I/O could be used
  22. just as well as the ASM code.  The end result would be the same.  A
  23. new object type could override the present methods with TURBO level
  24. methods for a test.  I don't have time right now.
  25.  
  26. I tried testing with and without virtual methods, and found no speed
  27. diferences on a 200K text file.
  28.  
  29. Please address any comments to Myself or to Don at the above Compuserve
  30. addresses.
  31.